* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --accent: #00bcd4;
  --text-light: #fafafa;
  --surface-light: #f5f5f5;
  --bg: #0d0d0d;
  --primary-text: #ffffff;
  --section-bg: #171717;
  --header-bg: #272727;
  --spacing: 1.2rem;
  --radius: 12px;
  --fs-body: 1rem;
  --fs-h1: 2.5rem;
  --fs-h2: 1.8rem;
  --transition: 0.3s ease;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: var(--fs-body);
  margin: 0;
  background: var(--bg);
  color: var(--primary-text);
  line-height: 1.6;
  animation: fadeIn 0.4s ease-in-out;
  overflow-x: hidden;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
h1 {
  text-align: center;
  font-weight: 700;
  font-size: var(--fs-h1);
}
header {
  background: var(--header-bg);
  padding: calc(var(--spacing) / 2) 0;
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav a {
  text-decoration: none;
  color: #fafafa;
  margin: 0 15px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: color var(--transition);
}
header nav a:hover {
  color: #6366f1;
}
.logoLink {
  text-decoration: none;
  margin: 15px;
}
a .brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}
.logo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #5b21b6, #4dd0e1);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fafafa;
}
.mainLogo {
  width: 6rem;
  height: 6rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #5b21b6, #4dd0e1);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fafafa;
  margin: 10px auto;
  transition: transform 0.8s ease, box-shadow 0.8s ease;
}
.mainLogo:hover {
  transform: translateY(-10px) rotateY(20deg);
  box-shadow: 0 0 15px #5e82b8;
}
.muted {
  color: #6d82a0;
  font-size: 13px;
  font-weight: 700;
}
h2 {
  font-size: var(--fs-h2);
  text-align: center;
  margin: 20px 0;
}
section {
  background-color: var(--section-bg);
  padding: var(--spacing);
  margin: calc(var(--spacing) * 2) auto;
  max-width: 80%;
  border-radius: var(--radius);
}
@media (max-width: 800px) {
  section {
    max-width: 90%;
  }
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:focus-visible {
  outline: 2px solid #4dd0e1;
  border-radius: 4px;
}

footer {
  text-align: center;
  background-color: #07101c;
  margin-bottom: 0;
  padding: 15px 0;
}
footer h4,
footer p {
  color: #fafafa;
}
#scybudApps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}
#scybudApps a {
  text-decoration: none;
}
#scybudApps .container {
  display: flex;
  flex-direction: column; /* FIXED HERE */
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}
#scybudApps .container:hover {
  transform: scale(1.1);
}
#scybudApps a span {
  margin-top: 5px;
  color: #f1f1f1;
  font-size: 12px;
}
#scybudApps .container img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  background-color: var(--surface-light);
  border-radius: 10px;
}
